/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    min-height: 90vh;
    background: linear-gradient(to right, #f4f9ff, #fdfeff);
    padding: 50px 10%;
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    margin-bottom: 80px;
}

/* Left Content */
.hero-content {
    max-width: 50%;
    color: rgb(0, 0, 0);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid #19C0FF;
    padding-left: 15px;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}

.hero-subtitle2 {
    font-size: 24px;
    font-weight: 600;
    color: #19C0FF;
    margin-top: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0;
    opacity: 0.9;
}

/* Button */
.hero-button {
    background: #19C0FF;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-button:hover {
    background: #4fb4d8;
}

/* Right Image */
.hero-image-container {
    max-width: 45%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

/* Reveal Section on Scroll */
.show .hero-section {
    opacity: 1;
    transform: translateY(0);
}

.show .hero-content {
    opacity: 1;
    transform: translateX(0);
}

.show .hero-image-container {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-image-container {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-button {
        font-size: 18px;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}
